diff --git a/.pre-commit-config.yaml b/.pre-commit-config.yaml
new file mode 100644
index 0000000..9a68f71
--- /dev/null
+++ b/.pre-commit-config.yaml
@@ -0,0 +1,19 @@
+exclude: 'build|docs|node_modules|.git|.tox|dist'
+default_stages: [commit]
+fail_fast: true
+default_language_version:
+ python: python3 # force all unspecified python hooks to run python3
+repos:
+ - repo: https://github.com/pre-commit/pre-commit-hooks
+ rev: master
+ hooks:
+ - id: trailing-whitespace
+ - id: end-of-file-fixer
+ - id: check-yaml
+ language_version: python3
+
+ - repo: https://github.com/thclark/pre-commit-sphinx
+ rev: 0.0.1
+ hooks:
+ - id: build-docs
+ language_version: python3
diff --git a/CMakeSettings.json b/CMakeSettings.json
index f35e71c..3dea073 100644
--- a/CMakeSettings.json
+++ b/CMakeSettings.json
@@ -27,7 +27,7 @@
"cmakeCommandArgs": "-T host=x64",
"buildCommandArgs": "-m -v:minimal",
"ctestCommandArgs": ""
-
+
},
{
"name": "x64-Release",
@@ -39,4 +39,4 @@
"ctestCommandArgs": ""
}
]
-}
\ No newline at end of file
+}
diff --git a/README.md b/README.md
index 5fa41af..e2413ed 100644
--- a/README.md
+++ b/README.md
@@ -1,104 +1,50 @@
-# cpplot
-
-> **Work is in progress to refactor this out from other libraries. Watch this space.**
-
-Interactive graphs and charts for C++ 11 upward,
-[interactively viewable in-browser using cpplot-viewer](https://cpplot.herokuapp.com).
-
-This library allows you to save figure files (in a *.json form compliant with the `plotly.js` library) to disk
-during program execution.
-
-
-## Why?
-
-For most engineering and scientific applications that come across my desk, it's a case of "prototype in MATLAB or Python, rewrite in C++". But:
- - I'm getting really sick of MATLAB in terms of deployability (there's no CI option to build it, the slug size of the runtime library is 3.7Gb, etc etc).
- - I'm getting really really sick of writing the damn code twice.
- - Most of my engineering and science apps are now getting deployed to cloud services. So displaying natively generated figures in-browser is a nightmare.
-
-What I need is a solution where I can prototype straight into a language which is fast, capable and has a pretty good ecosystem of third party libraries to help me.
-
-Now, with:
- - the great improvements to C++ in the C++11 and 14 standards (which make it much easier to handle threading and generally connect APIs of various libraries together),
- - availability of libraries like Eigen, cpr, ceres-solver, Intel MKL, cxxopts (I could go on and on),
- - great utilities like googletest and Cmake to remove all the old-skool build and test agony...
-
-C++ is really getting there. The one thing missing is a plotting library, which allows me to:
- - quickly and easily prototype new algorithms (visually diagnose what's wrong etc etc)
- - display analysis results on the web
- - produce the same figures on different platforms
- - save publication quality figures easily
-
-In all the other languages I use, I now use `plotly` to do those things. So now it's here for C++ too.
-
-
-## Viewing Figures
-
-A browser based utility is supplied at [https://cpplot.herokuapp.com](https://cpplot.herokuapp.com).
-Navigate to that link and you'll easily be able to view and export the figures created here.
+[](https://github.com/pre-commit/pre-commit)
+[](https://www.blackgirlscode.com/)
-The browser viewer is built in React (using the excellent `react-plotly.js`), is also open-source, free and it
-always keeps your data local (files are never uploaded to a server). Find the source
-at [https://github.com/thclark/cpplot-viewer](https://github.com/thclark/cpplot-viewer).
-**Some example figures to try out with the viewer are included in `/examples`**.
-
-## The Plotly Library
-
-### Plotly figure json specs
-
-At the core of plotly is a set of open specifications for JSON data which can be rendered into various figure types. The various figure classes available here
-
-### Plotly Offline
+# cpplot
-`Plotly.js` is a javascript library for rendering figures, which can be used offline. This is what's used by the browser viewer.
+Interactive graphs and charts for C++ 11 upward,
+[viewable in-browser using cpplot-viewer](https://cpplot.herokuapp.com).
-### Plotly Online
+Full documentation is at [https://cpplot.readthedocs.io](https://cpplot.readthedocs.io)
-Plotly have a range of online services for collaboration on data grids and figures. You can use their API or tools to take the contents of the files produced here (plotly compliant JSON strings) onto Plotly Online, but how to do that is out of scope here (check their docs).
-**HELP WANTED** - I have a branch that's starting to use the Plotly API, which might be the very early beginning of a
-client SDK for C++, enabling direct manipulation of online data. However, I have very little appetite for this (I personally don't use plotly online) so collaborators are welcome.
## For Developers
+You should only need to read the following if you plan to develop on `cpplot`.
+
### Style guide
We use the [Google C++ style guide](https://google.github.io/styleguide/cppguide.html) with the following exceptions:
- Don't care about line width so long as its within reason
- Use 4 space indenting, not 2 as suggested by the style guide, because we're not [total monsters](https://www.youtube.com/watch?v=SsoOG6ZeyUI) (just kidding xx).
-### Threading
-
-Figure write-to-disk is called as an async task, so doesn't block the main computation thread.
+### Pre-Commit
-This delays program termination when the main program executes quicker than the figure write.
-TODO consider creating daemonised threads for writing figures.
-
-### Third party dependencies
-
-We are currently using:
-
-[**Eigen**](http://eigen.tuxfamily.org/) provides a linear algebra library. It isn't as consistent with MATLAB's API as armadillo (an alternative), but the API is very understandable and is used extensively in the C++ community.
+You need to install pre-commit to get the hooks working. Do:
+```
+pip install pre-commit
+pre-commit install
+```
-[**glog**](https://github.com/google/glog) google's asynchronous logging library, used for logging to file.
+Once that's done, each time you make a commit, the following checks are made:
-[**googletest**](https://github.com/google/googletest) for unit testing.
+- valid github repo and files
+- code style
+- documentation builds correctly
-### Submodule dependencies
+Upon failure, the commit will halt. **Re-running the commit will automatically fix most issues** except:
+- You'll have to fix documentation yourself prior to a successful commit (there's no auto fix for that!!).
-You'll need to clone the repository **and its submodules, cpr and json,** in order to build it.
+You can run pre-commit hooks without making a commit, like:
```
-git clone --recurse-submodules https://github.com/thclark/cpplot
+pre-commit run build-docs
```
+which is useful to locally build documents without crazy efforts setting up an environment for sphinx.
-### Third party library installation (OSX)
-
-**ceres-solver which includes eigen and glog dependencies:**
-```bash
-brew install homebrew/science/ceres-solver
-```
### Compilation with cmake
diff --git a/docs/.gitignore b/docs/.gitignore
new file mode 100644
index 0000000..a8a5878
--- /dev/null
+++ b/docs/.gitignore
@@ -0,0 +1,4 @@
+doctrees
+html
+source/doxyoutput*
+source/library_api*
diff --git a/docs/requirements.txt b/docs/requirements.txt
new file mode 100644
index 0000000..959002e
--- /dev/null
+++ b/docs/requirements.txt
@@ -0,0 +1,8 @@
+
+# Required by the python script for building documentation. You probably won't have to install this (because you can
+# pre-commit hook builds docs for you and manages the environment).
+Sphinx==1.8.3
+sphinx-rtd-theme==0.4.2
+sphinx-tabs==1.1.10
+breathe==4.11.1
+exhale==0.2.1
diff --git a/docs/source/about.rst b/docs/source/about.rst
new file mode 100644
index 0000000..226f4cb
--- /dev/null
+++ b/docs/source/about.rst
@@ -0,0 +1,80 @@
+.. _about:
+
+=====
+About
+=====
+
+.. _why:
+
+Why?
+====
+
+For most engineering and scientific applications that come across my
+desk, it's a case of "prototype in MATLAB or Python, rewrite in C++".
+But: - I'm getting really sick of MATLAB in terms of deployability
+(there's no CI option to build it, the slug size of the runtime library
+is 3.7Gb, etc etc). - I'm getting really really sick of writing the damn
+code twice. - Most of my engineering and science apps are now getting
+deployed to cloud services. So displaying natively generated figures
+in-browser is a nightmare.
+
+What I need is a solution where I can prototype straight into a language
+which is fast, capable and has a pretty good ecosystem of third party
+libraries to help me.
+
+Now, with: - the great improvements to C++ in the C++11 and 14 standards
+(which make it much easier to handle threading and generally connect
+APIs of various libraries together), - availability of libraries like
+Eigen, cpr, ceres-solver, Intel MKL, cxxopts (I could go on and on), -
+great utilities like googletest and Cmake to remove all the old-skool
+build and test agony...
+
+C++ is really getting there. The one thing missing is a plotting
+library, which allows me to: - quickly and easily prototype new
+algorithms (visually diagnose what's wrong etc etc) - display analysis
+results on the web - produce the same figures on different platforms -
+save publication quality figures easily
+
+In all the other languages I use, I now use ``plotly`` to do those
+things. So now it's here for C++ too.
+
+
+.. _about_plotly:
+
+About Plotly
+============
+
+**cpplot** is based on the plot.ly json schema for figures and charts.
+
+Plotly figure json schema
+-------------------------
+
+At the core of plotly is a set of open specifications for JSON data
+which can be rendered into various figure types. The plotly team
+have hung a lot of services and offerings around it,
+but basically everything boils down to a `json schema __`.
+
+**cpplot** helps generate JSON which is compliant with that schema.
+
+Plotly Offline
+--------------
+
+``Plotly.js`` is an excellent javascript library for rendering figures, which can
+be used offline or in any third party app. This is what's used by the browser viewer.
+
+Plotly Online
+-------------
+
+Plot.ly have a range of online services, and anything produced by **cpplot** will be
+importable there, since it's compliant with their schema.
+
+I'm not a marketing person for plotly, so how to do that is out of scope here (check their docs)!!
+
+I have a branch that has some code using the Plotly API,
+which might be the very early beginning of a client SDK for C++,
+enabling direct manipulation of online data. However, I have very little
+appetite for this (I personally don't use plotly online, because I've
+found the support to be appalling in the past) but collaborators
+committed to developing and maintaining that would be welcome. File an issue if you're interested.
+
+
diff --git a/docs/source/conf.py b/docs/source/conf.py
new file mode 100644
index 0000000..a952183
--- /dev/null
+++ b/docs/source/conf.py
@@ -0,0 +1,284 @@
+# -*- coding: utf-8 -*-
+#
+# Documentation build configuration file
+#
+# This file is execfile()d with the current directory set to its containing dir.
+#
+# Note that not all possible configuration values are present in this
+# autogenerated file.
+#
+# All configuration values have a default; values that are commented out
+# serve to show the default.
+
+import os
+import sphinx_rtd_theme
+
+# If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+# sys.path.insert(0, os.path.abspath('.'))
+
+# -- General configuration -----------------------------------------------------
+
+# If your documentation needs a minimal Sphinx version, state it here.
+# needs_sphinx = '1.0'
+
+# Add any Sphinx extension module names here, as strings. They can be extensions
+# coming with Sphinx (named 'sphinx.ext.*') or your custom ones.
+# Breathe and exhale are added as recommended by:
+# https://exhale.readthedocs.io/en/latest/usage.html#usage-quickstart-guide
+extensions = [
+ 'sphinx.ext.todo',
+ 'sphinx_tabs.tabs',
+ 'sphinx.ext.mathjax',
+ 'sphinx.ext.ifconfig',
+ 'breathe',
+ 'exhale',
+]
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['_templates']
+
+# The suffix of source filenames.
+source_suffix = '.rst'
+
+# The encoding of source files.
+# source_encoding = 'utf-8-sig'
+
+# The master toctree document.
+master_doc = 'index'
+
+# General information about the project.
+project = u'cpplot'
+copyright = u'2017-20 Tom Clark'
+
+# The version info for the project you're documenting, acts as replacement for
+# |version| and |release|, also used in various other places throughout the
+# built documents.
+
+# The full version, including alpha/beta/rc tags.
+release = os.getenv('RELEASE_TAG', 'x.y.unknown')
+
+# The short X.Y version.
+version = '.'.join(release.split('.')[0:2])
+
+# The language for content autogenerated by Sphinx. Refer to documentation
+# for a list of supported languages.
+# language = None
+
+# There are two options for replacing |today|: either, you set today to some
+# non-false value, then it is used:
+# today = ''
+# Else, today_fmt is used as the format for a strftime call.
+# today_fmt = '%B %d, %Y'
+
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+exclude_patterns = []
+
+# The reST default role (used for this markup: `text`) to use for all documents.
+# default_role = None
+
+# If true, '()' will be appended to :func: etc. cross-reference text.
+# add_function_parentheses = True
+
+# If true, the current module name will be prepended to all description
+# unit titles (such as .. function::).
+# add_module_names = True
+
+# If true, sectionauthor and moduleauthor directives will be shown in the
+# output. They are ignored by default.
+# show_authors = False
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = 'sphinx'
+
+# A list of ignored prefixes for module index sorting.
+# modindex_common_prefix = []
+
+# -- Breathe and Exhale Configuration ------------------------------------------
+
+# Setup the breathe extension
+breathe_projects = {
+ "My Project": "./doxyoutput/xml"
+}
+breathe_default_project = "My Project"
+
+# Setup the exhale extension
+# TODO reset the doxygen input to ../../source once conan installation done, this should resent the build correctly
+exhale_args = {
+ # These arguments are required
+ "containmentFolder": "./library_api",
+ "rootFileName": "library_root.rst",
+ "rootFileTitle": "Library API",
+ "doxygenStripFromPath": "../../",
+ # Suggested optional arguments
+ "createTreeView": True,
+ # TIP: if using the sphinx-bootstrap-theme, you need
+ # "treeViewIsBootstrap": True,
+ "exhaleExecutesDoxygen": True,
+ # TODO can't build the api docs while json.hpp is there. Fix once #6 is complete.
+ # "exhaleDoxygenStdin": "INPUT = ../../source ../../source/plot_types"
+ "exhaleDoxygenStdin": "INPUT = ../../source/nowhere"
+}
+
+# Tell sphinx what the primary language being documented is
+primary_domain = 'cpp'
+
+# Tell sphinx what the pygments highlight language should be
+highlight_language = 'cpp'
+
+
+# -- Options for HTML output ---------------------------------------------------
+
+# The theme to use for HTML and HTML Help pages. See the documentation for
+# a list of builtin themes.
+html_theme = 'sphinx_rtd_theme'
+
+# Theme options are theme-specific and customize the look and feel of a theme
+# further. For a list of options available for each theme, see the
+# documentation.
+# html_theme_options = {}
+
+# Add any paths that contain custom themes here, relative to this directory.
+# html_theme_path = ["_themes",]
+html_theme_path = [sphinx_rtd_theme.get_html_theme_path()]
+
+# The name for this set of Sphinx documents. If None, it defaults to
+# " v documentation".
+html_title = "cpplot: JSON based figures for C++"
+
+# A shorter title for the navigation bar. Default is the same as html_title.
+html_short_title = "cpplot"
+
+# The name of an image file (relative to this directory) to place at the top
+# of the sidebar.
+# html_logo = None
+
+# The name of an image file (within the static path) to use as favicon of the
+# docs. This file should be a Windows icon file (.ico) being 16x16 or 32x32
+# pixels large.
+html_favicon = 'favicon.ico'
+
+# Add any paths that contain custom static files (such as style sheets) here,
+# relative to this directory. They are copied after the builtin static files,
+# so a file named "default.css" will overwrite the builtin "default.css".
+html_static_path = ['_static']
+
+# If not '', a 'Last updated on:' timestamp is inserted at every page bottom,
+# using the given strftime format.
+# html_last_updated_fmt = '%b %d, %Y'
+
+# If true, SmartyPants will be used to convert quotes and dashes to
+# typographically correct entities.
+html_use_smartypants = True
+
+# Custom sidebar templates, maps document names to template names.
+# html_sidebars = {}
+
+# Additional templates that should be rendered to pages, maps page names to
+# template names.
+# html_additional_pages = {}
+
+# If false, no module index is generated.
+html_domain_indices = True
+
+# If false, no index is generated.
+html_use_index = True
+
+# If true, the index is split into individual pages for each letter.
+html_split_index = False
+
+# If true, links to the reST sources are added to the pages.
+html_show_sourcelink = False
+
+# If true, "Created using Sphinx" is shown in the HTML footer. Default is True.
+html_show_sphinx = False
+
+# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
+html_show_copyright = True
+
+# If true, an OpenSearch description file will be output, and all pages will
+# contain a tag referring to it. The value of this option must be the
+# base URL from which the finished HTML is served.
+# html_use_opensearch = ''
+
+# This is the file name suffix for HTML files (e.g. ".xhtml").
+# html_file_suffix = None
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'libraryDoc'
+
+# -- Options for LaTeX output --------------------------------------------------
+
+latex_elements = {
+ # The paper size ('letterpaper' or 'a4paper').
+ # 'papersize': 'letterpaper',
+
+ # The font size ('10pt', '11pt' or '12pt').
+ # 'pointsize': '10pt',
+
+ # Additional stuff for the LaTeX preamble.
+ # 'preamble': '',
+}
+
+# Grouping the document tree into LaTeX files. List of tuples
+# (source start file, target name, title, author, documentclass [howto/manual]).
+latex_documents = [
+ ('index', 'cpplot.tex', u'cpplot',
+ u'Tom Clark', 'manual'),
+]
+
+# The name of an image file (relative to this directory) to place at the top of
+# the title page.
+# latex_logo = None
+
+# For "manual" documents, if this is true, then toplevel headings are parts,
+# not chapters.
+# latex_use_parts = False
+
+# If true, show page references after internal links.
+# latex_show_pagerefs = False
+
+# If true, show URL addresses after external links.
+# latex_show_urls = False
+
+# Documents to append as an appendix to all manuals.
+# latex_appendices = []
+
+# If false, no module index is generated.
+# latex_domain_indices = True
+
+
+# -- Options for manual page output --------------------------------------------
+
+# One entry per manual page. List of tuples
+# (source start file, name, description, authors, manual section).
+man_pages = [
+ ('index', 'cpplot', u'cpplot',
+ [u'Tom Clark'], 1)
+]
+
+# If true, show URL addresses after external links.
+# man_show_urls = False
+
+
+# -- Options for Texinfo output ------------------------------------------------
+
+# Grouping the document tree into Texinfo files. List of tuples
+# (source start file, target name, title, author,
+# dir menu entry, description, category)
+texinfo_documents = [
+ ('index', 'cpplot', u'cpplot',
+ u'Tom Clark', 'cpplot', 'JSON based figures for C++',
+ 'Miscellaneous'),
+]
+
+# Documents to append as an appendix to all manuals.
+# texinfo_appendices = []
+
+# If false, no module index is generated.
+# texinfo_domain_indices = True
+
+# How to display URL addresses: 'footnote', 'no', or 'inline'.
+# texinfo_show_urls = 'footnote'
diff --git a/docs/source/favicon.ico b/docs/source/favicon.ico
new file mode 100644
index 0000000..97f2f38
Binary files /dev/null and b/docs/source/favicon.ico differ
diff --git a/docs/source/images/digital_twin_component_basic.svg b/docs/source/images/digital_twin_component_basic.svg
new file mode 100644
index 0000000..b49800f
--- /dev/null
+++ b/docs/source/images/digital_twin_component_basic.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/docs/source/index.rst b/docs/source/index.rst
new file mode 100644
index 0000000..c72642b
--- /dev/null
+++ b/docs/source/index.rst
@@ -0,0 +1,43 @@
+|pre-commit| |black-girls-code|
+
+.. ATTENTION::
+ This library is in use in several projects, but it's still early days.
+ Like the idea of it? Please
+ `star us on GitHub `_ and contribute via the
+ `issues board `_ and
+ `roadmap `_.
+
+
+======
+cpplot
+======
+
+.. epigraph::
+ *"cpplot" ~ interactive figures you can show on the web*
+
+This library allows you to create interactive graphs and charts in C++ 11 upward, which are
+`viewable in-browser `_.
+
+You can save figures to disc as ``\*.json`` files. Their contents are compliant with the
+``plotly.js`` library schema so figures can be rendered in javascript.
+
+Get going with the :ref:`quick start<_quick_start>`, or :ref:`read about why I started this<_why>`...
+
+Contents
+========
+
+.. toctree::
+ :maxdepth: 2
+
+ quick_start
+ installation
+ about
+ license
+ library_api/library_root
+ version_history
+
+
+.. |pre-commit| image:: https://img.shields.io/badge/pre--commit-enabled-brightgreen?logo=pre-commit&logoColor=white
+ :target: https://github.com/pre-commit/pre-commit
+.. |black-girls-code| image:: https://img.shields.io/badge/black%20girls-code-f64279.svg
+ :target: https://www.blackgirlscode.com/
diff --git a/docs/source/installation.rst b/docs/source/installation.rst
new file mode 100644
index 0000000..44acd93
--- /dev/null
+++ b/docs/source/installation.rst
@@ -0,0 +1,61 @@
+.. _installation:
+
+============
+Installation
+============
+
+.. ATTENTION::
+ `We're working on it. I promise. `_
+
+ Until we get conan or vcpkg up and running, installation is via cmake.
+
+.. _upgrading_from_previous_versions:
+
+Upgrading from previous versions
+================================
+
+Please see the note on version stability and backward compatibility :ref:`here<_stability>`.
+
+
+.. _third_party_dependencies:
+
+Third party dependencies
+========================
+
+Install and link
+----------------
+
+`**Eigen** `__ provides a linear algebra
+library. It isn't as consistent with MATLAB's API as armadillo (an
+alternative), but the API is very understandable and is used extensively
+in the C++ community.
+
+`**glog** `__ google's asynchronous
+logging library, used for logging to file.
+
+`**googletest** `__ for unit
+testing.
+
+
+Submodule dependencies
+----------------------
+
+We also use `cpr `__ and `json `__, which are included as submodule dependencies.
+
+**THIS WILL CHANGE VERY SOON!** But for now, you'll need to clone the repository **and its submodules, cpr and
+json,** in order to build it.
+
+.. code:: bash
+
+ git clone --recurse-submodules https://github.com/thclark/cpplot
+
+
+.. _compilation_with_cmake:
+
+Compilation with cmake
+======================
+
+A cross-platform compilation file is provided using cmake, but it's
+**not tested on windows**.
+
+PRs to fix or improve it for windows are most welcome.
diff --git a/docs/source/license.rst b/docs/source/license.rst
new file mode 100644
index 0000000..e8dbbc2
--- /dev/null
+++ b/docs/source/license.rst
@@ -0,0 +1,20 @@
+.. _license:
+
+=======
+License
+=======
+
+
+The boring bit
+==============
+
+Your license here.
+
+
+Third Party Libraries
+=====================
+
+**cpplot** includes or is linked against the following third party libraries:
+
+Stuff here.
+
diff --git a/docs/source/quick_start.rst b/docs/source/quick_start.rst
new file mode 100644
index 0000000..fac4e1e
--- /dev/null
+++ b/docs/source/quick_start.rst
@@ -0,0 +1,97 @@
+.. _quick_start:
+
+===========
+Quick Start
+===========
+
+.. _viewing_figures:
+
+Viewing Figures
+===============
+
+A browser based viewer is supplied at `https://cpplot.herokuapp.com `__.
+Navigate to that link and you'll be able to view and export figures created with **cpplot**.
+
+The viewer always keeps your data local (files are never uploaded to a server).
+
+If you've not created figure files yourself yet, you can
+`download the examples from here `__
+and then select them in the viewer. Some are simple, some are amazing ;)
+
+
+.. _create_your_first_figure:
+
+Create Your First Figure
+========================
+
+To create your first figure with **cpplot**, you can compile and run the program below:
+
+.. code-block:: cpp
+
+ /*
+ * main.cpp - An example program to create your first figure as a Plotly-compliant .json file.
+ *
+ * Author: YOU
+ *
+ * Copyright (c) YEAR YOU. All Rights Reserved.
+ *
+ */
+ #include
+ #include
+ #include
+ #include "cpplot.h" // TODO these may need to change to something like for users
+ #include "eigen.h" // who have installed the library rather than linking against source code
+ #include "exceptions.h" // directly
+
+ using namespace std;
+ using namespace Eigen;
+ using namespace cpplot;
+
+ int main(int argc, char* argv[]) {
+
+ // Create a figure object
+ Figure fig = Figure();
+
+ // Create a scatter plot object and set its values
+ ScatterPlot p1 = ScatterPlot();
+ p1.x = Eigen::VectorXd::LinSpaced(10, 0.0, 1.0);
+ p1.y = Eigen::VectorXd::LinSpaced(10, 1.0, 2.0);
+
+ // Alter its properties
+ p1.name = "my first trace";
+ p.setWidth(1);
+ p.setDash("dash");
+ p.setColor("#e377c2"); // "Raspberry yoghurt pink", obviously the best selection
+
+ // Add it to the figure
+ fig.add(p1);
+
+ // You can add multiple plots to a figure...
+ ScatterPlot p2 = ScatterPlot();
+ p2.name = "my second trace";
+ fig.add(p2);
+
+ // And whenever you want, you can write a figure to disc.
+ // Note, writing is an async task so your calculations can
+ // proceed whilst writing goes into the background.
+ //
+ // In this example we allow the write() method to automatically append a `.json` extension
+ // to the file name (if not already present), and we prevent it from printing the json to stdout
+ // (which can be a useful feature to enable if you want to use your program with bash pipes)
+ std::cout << "Writing figure to current directory: " << std::endl;
+ fig.write("my_first_cpplot_figure", true, false);
+
+ }
+
+
+.. _building_web_tools:
+
+Building Your Own Web Tools
+===========================
+
+You (or the frontend team you work with!) will probably want to display figures in your own web tools, rather than
+always our (fairly basic, right now) viewer utility.
+
+The `browser viewer `__ is built in React (using ``react-plotly.js``).
+It is also open-source, so you can use its components as a basis for your own. See
+`https://github.com/thclark/cpplot-viewer `__
diff --git a/docs/source/version_history.rst b/docs/source/version_history.rst
new file mode 100644
index 0000000..248eef5
--- /dev/null
+++ b/docs/source/version_history.rst
@@ -0,0 +1,59 @@
+.. _version_history:
+
+===============
+Version History
+===============
+
+.. _origins:
+
+Origins
+=======
+
+This library was hacked together / extracted from other repositories such as `the es-flow library `__ due to the
+need for a plotting library enabling me to deliver results over the web.
+
+As more stars are being added on GitHub (14 at the time of writing, woot woot!) it's now worth properly versioning
+and maintaining the effort, since it seems like it's useful to more people than just me.
+
+.. _stability:
+
+Stability
+=========
+
+The library uses semver versioning, like `version x.y.z`.
+
+Theoretically, only `x` increments should break backward compatibility. But, it's still early days as noted in
+`issue 10 `__ and I don't want to end up on version 200.4.5 in
+the next five minutes...
+
+**Let's be pragmatic:** whilst still on version `0.0.z` please consider the API as unstable
+version-to-version (z increments). This is because I (or we -
+`please help `_!) will be still architecting the library sensibly.
+
+**When I break it, I'll at least tell you what's breaking! Check back here as you update.**
+
+For `versions >= 0.x.y` expect `y` increments not to break, breaking changes might occur on `x` increments.
+
+For `versions >= x.y.z` where `x >= 1` expect `x` increments to break backward compatibility.
+
+
+.. _version_0.0.1:
+
+0.0.1
+=====
+
+Initial version applied to the library
+
+New Features
+------------
+#. Documentation in RestructuredText and hooked for public viewing on `readthedocs `__.
+#. Pre-commit hooks added to ensure docs always build (whatever commit you're at) and to apply consistent file formats.
+#. Implemented semver versioning system which will be done with GitHub releases.
+
+Backward Incompatible API Changes
+---------------------------------
+#. n/a (Initial release)
+
+Bug Fixes & Minor Changes
+-------------------------
+#. n/a (Initial Release)
diff --git a/examples/test_bar_and_scatter_plot.json b/examples/test_bar_and_scatter_plot.json
index e2af756..8ea4399 100644
--- a/examples/test_bar_and_scatter_plot.json
+++ b/examples/test_bar_and_scatter_plot.json
@@ -1 +1 @@
-{"data":[{"type":"bar","x":["cppgiraffes","orangutans","monkeys"],"y":[2,2.5,3]},{"type":"scatter","x":[0,1,2],"y":[1,2,3]}],"layout":{},"meta":{"caption":"","id":"","name":"","short_caption":""}}
\ No newline at end of file
+{"data":[{"type":"bar","x":["cppgiraffes","orangutans","monkeys"],"y":[2,2.5,3]},{"type":"scatter","x":[0,1,2],"y":[1,2,3]}],"layout":{},"meta":{"caption":"","id":"","name":"","short_caption":""}}
diff --git a/examples/test_bar_plot.json b/examples/test_bar_plot.json
index 269eb9e..1fd2623 100644
--- a/examples/test_bar_plot.json
+++ b/examples/test_bar_plot.json
@@ -1 +1 @@
-{"data":[{"type":"bar","x":["cppgiraffes","orangutans","monkeys"],"y":[2,2.5,3]}],"layout":{},"meta":{"caption":"","id":"","name":"","short_caption":""}}
\ No newline at end of file
+{"data":[{"type":"bar","x":["cppgiraffes","orangutans","monkeys"],"y":[2,2.5,3]}],"layout":{},"meta":{"caption":"","id":"","name":"","short_caption":""}}
diff --git a/examples/test_fit_lewkowicz_speed.json b/examples/test_fit_lewkowicz_speed.json
index c607119..8304ea9 100644
--- a/examples/test_fit_lewkowicz_speed.json
+++ b/examples/test_fit_lewkowicz_speed.json
@@ -1 +1 @@
-{"data":[{"name":"Correct","type":"scatter","x":[3.98562679275706,8.98531529795,10.3249687429854,11.132462597911,11.7131949308655,12.1677336610463,12.5418958372323,12.8604512203924,13.1383193323542,13.385187103899,13.6077021288232,13.8106248208217,13.9974814109073,14.1709567225646,14.3331420297241,14.4856977733145,14.6299639875838,14.767037388778,14.8978265190468,15.0230920398678,15.1434767298531,15.259528190879,15.3717162911932,15.4804467447606,15.5860718104452,15.6888988143491,15.7891970060689,15.8872031250629,15.9831259578047,16.0771500976311,16.1694390690368,16.2601379411257,16.3493755272872,16.437266247303,16.5239117122028,16.6094020799761,16.6938172207822,16.7772277229046,16.8596957648765,16.9412758745884],"y":[1,11.2307692307692,21.4615384615385,31.6923076923077,41.9230769230769,52.1538461538461,62.3846153846154,72.6153846153846,82.8461538461538,93.0769230769231,103.307692307692,113.538461538462,123.769230769231,134,144.230769230769,154.461538461538,164.692307692308,174.923076923077,185.153846153846,195.384615384615,205.615384615385,215.846153846154,226.076923076923,236.307692307692,246.538461538462,256.769230769231,267,277.230769230769,287.461538461538,297.692307692308,307.923076923077,318.153846153846,328.384615384615,338.615384615385,348.846153846154,359.076923076923,369.307692307692,379.538461538461,389.769230769231,400]},{"name":"Added noise","type":"scatter","x":[3.73563070594169,8.80108419202159,10.4527714040829,11.1117876638727,11.7295785495715,12.0272132542103,12.3154181453395,12.9498835788265,13.2279675352725,13.6025335518694,13.5494531675681,13.8203330068557,14.1629640839634,13.9382427778284,14.1098728472463,14.5005478699821,14.7155386796224,14.5208864818836,14.8395343444243,14.8065131586271,15.102219717082,15.3529145470593,15.4162046126216,15.6956649921245,15.7591552556995,15.7023632031422,15.5851794514476,15.9641626062124,15.9411256362301,16.1777453948534,16.3745994842817,16.3912369609684,16.2306020241193,16.2109985041569,16.6419526544955,16.5235191930411,16.760136504726,16.9054329658804,17.1052144576435,16.8739452099512],"y":[1,11.2307692307692,21.4615384615385,31.6923076923077,41.9230769230769,52.1538461538461,62.3846153846154,72.6153846153846,82.8461538461538,93.0769230769231,103.307692307692,113.538461538462,123.769230769231,134,144.230769230769,154.461538461538,164.692307692308,174.923076923077,185.153846153846,195.384615384615,205.615384615385,215.846153846154,226.076923076923,236.307692307692,246.538461538462,256.769230769231,267,277.230769230769,287.461538461538,297.692307692308,307.923076923077,318.153846153846,328.384615384615,338.615384615385,348.846153846154,359.076923076923,369.307692307692,379.538461538461,389.769230769231,400]},{"name":"Fitted","type":"scatter","x":[3.78582127134044,8.88023661004735,10.2452698377713,11.0680594258246,11.6597897625109,12.1229342282899,12.5041779839447,12.8287601254389,13.1118828798997,13.3634167429852,13.5901352879101,13.7968891519203,13.9872714058691,14.1640177711715,14.3292591738722,14.4846875441437,14.6316683348227,14.7713190706667,14.9045655370554,15.032182836843,15.1548259565252,15.273052902575,15.3873424750398,15.4981081041711,15.605708752321,15.7104575977509,15.8126290207924,15.9124642756783,16.0101761340391,16.1059527159886,16.1999606736123,16.2923478539365,16.3832455402802,16.4727703496435,16.56102584759,16.6481039296462,16.7340860085876,16.8190440394528,16.9030414081929,16.9861337051619],"y":[1,11.2307692307692,21.4615384615385,31.6923076923077,41.9230769230769,52.1538461538461,62.3846153846154,72.6153846153846,82.8461538461538,93.0769230769231,103.307692307692,113.538461538462,123.769230769231,134,144.230769230769,154.461538461538,164.692307692308,174.923076923077,185.153846153846,195.384615384615,205.615384615385,215.846153846154,226.076923076923,236.307692307692,246.538461538462,256.769230769231,267,277.230769230769,287.461538461538,297.692307692308,307.923076923077,318.153846153846,328.384615384615,338.615384615385,348.846153846154,359.076923076923,369.307692307692,379.538461538461,389.769230769231,400]}],"layout":{"xaxis":{"title":"u_bar (m/s)"},"yaxis":{"title":"z (m)"}},"meta":{"caption":"","id":"","name":"","short_caption":""}}
\ No newline at end of file
+{"data":[{"name":"Correct","type":"scatter","x":[3.98562679275706,8.98531529795,10.3249687429854,11.132462597911,11.7131949308655,12.1677336610463,12.5418958372323,12.8604512203924,13.1383193323542,13.385187103899,13.6077021288232,13.8106248208217,13.9974814109073,14.1709567225646,14.3331420297241,14.4856977733145,14.6299639875838,14.767037388778,14.8978265190468,15.0230920398678,15.1434767298531,15.259528190879,15.3717162911932,15.4804467447606,15.5860718104452,15.6888988143491,15.7891970060689,15.8872031250629,15.9831259578047,16.0771500976311,16.1694390690368,16.2601379411257,16.3493755272872,16.437266247303,16.5239117122028,16.6094020799761,16.6938172207822,16.7772277229046,16.8596957648765,16.9412758745884],"y":[1,11.2307692307692,21.4615384615385,31.6923076923077,41.9230769230769,52.1538461538461,62.3846153846154,72.6153846153846,82.8461538461538,93.0769230769231,103.307692307692,113.538461538462,123.769230769231,134,144.230769230769,154.461538461538,164.692307692308,174.923076923077,185.153846153846,195.384615384615,205.615384615385,215.846153846154,226.076923076923,236.307692307692,246.538461538462,256.769230769231,267,277.230769230769,287.461538461538,297.692307692308,307.923076923077,318.153846153846,328.384615384615,338.615384615385,348.846153846154,359.076923076923,369.307692307692,379.538461538461,389.769230769231,400]},{"name":"Added noise","type":"scatter","x":[3.73563070594169,8.80108419202159,10.4527714040829,11.1117876638727,11.7295785495715,12.0272132542103,12.3154181453395,12.9498835788265,13.2279675352725,13.6025335518694,13.5494531675681,13.8203330068557,14.1629640839634,13.9382427778284,14.1098728472463,14.5005478699821,14.7155386796224,14.5208864818836,14.8395343444243,14.8065131586271,15.102219717082,15.3529145470593,15.4162046126216,15.6956649921245,15.7591552556995,15.7023632031422,15.5851794514476,15.9641626062124,15.9411256362301,16.1777453948534,16.3745994842817,16.3912369609684,16.2306020241193,16.2109985041569,16.6419526544955,16.5235191930411,16.760136504726,16.9054329658804,17.1052144576435,16.8739452099512],"y":[1,11.2307692307692,21.4615384615385,31.6923076923077,41.9230769230769,52.1538461538461,62.3846153846154,72.6153846153846,82.8461538461538,93.0769230769231,103.307692307692,113.538461538462,123.769230769231,134,144.230769230769,154.461538461538,164.692307692308,174.923076923077,185.153846153846,195.384615384615,205.615384615385,215.846153846154,226.076923076923,236.307692307692,246.538461538462,256.769230769231,267,277.230769230769,287.461538461538,297.692307692308,307.923076923077,318.153846153846,328.384615384615,338.615384615385,348.846153846154,359.076923076923,369.307692307692,379.538461538461,389.769230769231,400]},{"name":"Fitted","type":"scatter","x":[3.78582127134044,8.88023661004735,10.2452698377713,11.0680594258246,11.6597897625109,12.1229342282899,12.5041779839447,12.8287601254389,13.1118828798997,13.3634167429852,13.5901352879101,13.7968891519203,13.9872714058691,14.1640177711715,14.3292591738722,14.4846875441437,14.6316683348227,14.7713190706667,14.9045655370554,15.032182836843,15.1548259565252,15.273052902575,15.3873424750398,15.4981081041711,15.605708752321,15.7104575977509,15.8126290207924,15.9124642756783,16.0101761340391,16.1059527159886,16.1999606736123,16.2923478539365,16.3832455402802,16.4727703496435,16.56102584759,16.6481039296462,16.7340860085876,16.8190440394528,16.9030414081929,16.9861337051619],"y":[1,11.2307692307692,21.4615384615385,31.6923076923077,41.9230769230769,52.1538461538461,62.3846153846154,72.6153846153846,82.8461538461538,93.0769230769231,103.307692307692,113.538461538462,123.769230769231,134,144.230769230769,154.461538461538,164.692307692308,174.923076923077,185.153846153846,195.384615384615,205.615384615385,215.846153846154,226.076923076923,236.307692307692,246.538461538462,256.769230769231,267,277.230769230769,287.461538461538,297.692307692308,307.923076923077,318.153846153846,328.384615384615,338.615384615385,348.846153846154,359.076923076923,369.307692307692,379.538461538461,389.769230769231,400]}],"layout":{"xaxis":{"title":"u_bar (m/s)"},"yaxis":{"title":"z (m)"}},"meta":{"caption":"","id":"","name":"","short_caption":""}}
diff --git a/examples/test_layout_no_title_plot.json b/examples/test_layout_no_title_plot.json
index 8db5dbe..df8152a 100644
--- a/examples/test_layout_no_title_plot.json
+++ b/examples/test_layout_no_title_plot.json
@@ -1 +1 @@
-{"data":[{"colorscale":"YlGnBu","type":"surface","x":[[-1.5,-0.45,0.6],[-1.5,-0.45,0.6],[-1.5,-0.45,0.6]],"y":[[-1.26,-1.26,-1.26],[0,0,0],[1.26,1.26,1.26]],"z":[[0.99,-1.0575,-0.9],[2.25,0.2025,0.36],[3.51,1.4625,1.62]]}],"layout":{"xaxis":{"title":"ecks"},"yaxis":{"title":"why"}},"meta":{"caption":"","id":"","name":"","short_caption":""}}
\ No newline at end of file
+{"data":[{"colorscale":"YlGnBu","type":"surface","x":[[-1.5,-0.45,0.6],[-1.5,-0.45,0.6],[-1.5,-0.45,0.6]],"y":[[-1.26,-1.26,-1.26],[0,0,0],[1.26,1.26,1.26]],"z":[[0.99,-1.0575,-0.9],[2.25,0.2025,0.36],[3.51,1.4625,1.62]]}],"layout":{"xaxis":{"title":"ecks"},"yaxis":{"title":"why"}},"meta":{"caption":"","id":"","name":"","short_caption":""}}
diff --git a/examples/test_layout_plot.json b/examples/test_layout_plot.json
index 2156b94..8fe9295 100644
--- a/examples/test_layout_plot.json
+++ b/examples/test_layout_plot.json
@@ -1 +1 @@
-{"data":[{"type":"scatter","x":[0,1,2],"y":[1,2,3]}],"layout":{"title":"Graph Title","xaxis":{"title":"ecks"},"yaxis":{"title":"why"}},"meta":{"caption":"","id":"","name":"","short_caption":""}}
\ No newline at end of file
+{"data":[{"type":"scatter","x":[0,1,2],"y":[1,2,3]}],"layout":{"title":"Graph Title","xaxis":{"title":"ecks"},"yaxis":{"title":"why"}},"meta":{"caption":"","id":"","name":"","short_caption":""}}
diff --git a/examples/test_mandelbrot_plot.json b/examples/test_mandelbrot_plot.json
index e0b1f9d..70b6bb2 100644
--- a/examples/test_mandelbrot_plot.json
+++ b/examples/test_mandelbrot_plot.json
@@ -1 +1 @@
-{"data":[{"colorscale":"YlGnBu","type":"surface","x":[[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6],[-1.5,-1.49649415692821,-1.49298831385643,-1.48948247078464,-1.48597662771285,-1.48247078464107,-1.47896494156928,-1.4754590984975,-1.47195325542571,-1.46844741235392,-1.46494156928214,-1.46143572621035,-1.45792988313856,-1.45442404006678,-1.45091819699499,-1.44741235392321,-1.44390651085142,-1.44040066777963,-1.43689482470785,-1.43338898163606,-1.42988313856427,-1.42637729549249,-1.4228714524207,-1.41936560934891,-1.41585976627713,-1.41235392320534,-1.40884808013356,-1.40534223706177,-1.40183639398998,-1.3983305509182,-1.39482470784641,-1.39131886477462,-1.38781302170284,-1.38430717863105,-1.38080133555927,-1.37729549248748,-1.37378964941569,-1.37028380634391,-1.36677796327212,-1.36327212020033,-1.35976627712855,-1.35626043405676,-1.35275459098498,-1.34924874791319,-1.3457429048414,-1.34223706176962,-1.33873121869783,-1.33522537562604,-1.33171953255426,-1.32821368948247,-1.32470784641068,-1.3212020033389,-1.31769616026711,-1.31419031719533,-1.31068447412354,-1.30717863105175,-1.30367278797997,-1.30016694490818,-1.29666110183639,-1.29315525876461,-1.28964941569282,-1.28614357262104,-1.28263772954925,-1.27913188647746,-1.27562604340568,-1.27212020033389,-1.2686143572621,-1.26510851419032,-1.26160267111853,-1.25809682804674,-1.25459098497496,-1.25108514190317,-1.24757929883139,-1.2440734557596,-1.24056761268781,-1.23706176961603,-1.23355592654424,-1.23005008347245,-1.22654424040067,-1.22303839732888,-1.2195325542571,-1.21602671118531,-1.21252086811352,-1.20901502504174,-1.20550918196995,-1.20200333889816,-1.19849749582638,-1.19499165275459,-1.1914858096828,-1.18797996661102,-1.18447412353923,-1.18096828046745,-1.17746243739566,-1.17395659432387,-1.17045075125209,-1.1669449081803,-1.16343906510851,-1.15993322203673,-1.15642737896494,-1.15292153589316,-1.14941569282137,-1.14590984974958,-1.1424040066778,-1.13889816360601,-1.13539232053422,-1.13188647746244,-1.12838063439065,-1.12487479131886,-1.12136894824708,-1.11786310517529,-1.11435726210351,-1.11085141903172,-1.10734557595993,-1.10383973288815,-1.10033388981636,-1.09682804674457,-1.09332220367279,-1.089816360601,-1.08631051752922,-1.08280467445743,-1.07929883138564,-1.07579298831386,-1.07228714524207,-1.06878130217028,-1.0652754590985,-1.06176961602671,-1.05826377295493,-1.05475792988314,-1.05125208681135,-1.04774624373957,-1.04424040066778,-1.04073455759599,-1.03722871452421,-1.03372287145242,-1.03021702838063,-1.02671118530885,-1.02320534223706,-1.01969949916528,-1.01619365609349,-1.0126878130217,-1.00918196994992,-1.00567612687813,-1.00217028380634,-0.998664440734558,-0.995158597662771,-0.991652754590985,-0.988146911519199,-0.984641068447412,-0.981135225375626,-0.97762938230384,-0.974123539232053,-0.970617696160267,-0.967111853088481,-0.963606010016695,-0.960100166944908,-0.956594323873122,-0.953088480801336,-0.949582637729549,-0.946076794657763,-0.942570951585977,-0.93906510851419,-0.935559265442404,-0.932053422370618,-0.928547579298831,-0.925041736227045,-0.921535893155259,-0.918030050083472,-0.914524207011686,-0.9110183639399,-0.907512520868114,-0.904006677796327,-0.900500834724541,-0.896994991652755,-0.893489148580968,-0.889983305509182,-0.886477462437396,-0.88297161936561,-0.879465776293823,-0.875959933222037,-0.872454090150251,-0.868948247078464,-0.865442404006678,-0.861936560934892,-0.858430717863105,-0.854924874791319,-0.851419031719533,-0.847913188647746,-0.84440734557596,-0.840901502504174,-0.837395659432387,-0.833889816360601,-0.830383973288815,-0.826878130217028,-0.823372287145242,-0.819866444073456,-0.81636060100167,-0.812854757929883,-0.809348914858097,-0.805843071786311,-0.802337228714524,-0.798831385642738,-0.795325542570952,-0.791819699499165,-0.788313856427379,-0.784808013355593,-0.781302170283806,-0.77779632721202,-0.774290484140234,-0.770784641068447,-0.767278797996661,-0.763772954924875,-0.760267111853088,-0.756761268781302,-0.753255425709516,-0.74974958263773,-0.746243739565943,-0.742737896494157,-0.739232053422371,-0.735726210350584,-0.732220367278798,-0.728714524207012,-0.725208681135226,-0.721702838063439,-0.718196994991653,-0.714691151919867,-0.71118530884808,-0.707679465776294,-0.704173622704508,-0.700667779632721,-0.697161936560935,-0.693656093489149,-0.690150250417362,-0.686644407345576,-0.68313856427379,-0.679632721202003,-0.676126878130217,-0.672621035058431,-0.669115191986644,-0.665609348914858,-0.662103505843072,-0.658597662771286,-0.655091819699499,-0.651585976627713,-0.648080133555927,-0.6445742904841399,-0.641068447412354,-0.637562604340568,-0.634056761268781,-0.630550918196995,-0.627045075125209,-0.623539232053422,-0.620033388981636,-0.61652754590985,-0.613021702838063,-0.609515859766277,-0.606010016694491,-0.602504173622704,-0.598998330550918,-0.595492487479132,-0.591986644407346,-0.588480801335559,-0.584974958263773,-0.581469115191987,-0.5779632721202,-0.574457429048414,-0.570951585976628,-0.567445742904842,-0.563939899833055,-0.560434056761269,-0.556928213689483,-0.553422370617696,-0.54991652754591,-0.546410684474124,-0.542904841402337,-0.539398998330551,-0.535893155258765,-0.532387312186978,-0.528881469115192,-0.525375626043406,-0.521869782971619,-0.518363939899833,-0.514858096828047,-0.511352253756261,-0.507846410684474,-0.504340567612688,-0.500834724540902,-0.497328881469115,-0.493823038397329,-0.490317195325543,-0.486811352253756,-0.48330550918197,-0.479799666110184,-0.476293823038397,-0.472787979966611,-0.469282136894825,-0.465776293823038,-0.462270450751252,-0.458764607679466,-0.455258764607679,-0.451752921535893,-0.448247078464107,-0.444741235392321,-0.441235392320534,-0.437729549248748,-0.434223706176962,-0.430717863105175,-0.427212020033389,-0.423706176961603,-0.420200333889816,-0.41669449081803,-0.413188647746244,-0.409682804674458,-0.406176961602671,-0.402671118530885,-0.399165275459099,-0.395659432387312,-0.392153589315526,-0.38864774624374,-0.385141903171953,-0.381636060100167,-0.378130217028381,-0.374624373956594,-0.371118530884808,-0.367612687813022,-0.364106844741235,-0.360601001669449,-0.357095158597663,-0.353589315525876,-0.35008347245409,-0.346577629382304,-0.343071786310518,-0.339565943238731,-0.336060100166945,-0.332554257095159,-0.329048414023372,-0.325542570951586,-0.3220367278798,-0.318530884808013,-0.315025041736227,-0.311519198664441,-0.308013355592655,-0.304507512520868,-0.301001669449082,-0.297495826377296,-0.293989983305509,-0.290484140233723,-0.286978297161937,-0.28347245409015,-0.279966611018364,-0.276460767946578,-0.272954924874791,-0.269449081803005,-0.265943238731219,-0.262437395659432,-0.258931552587646,-0.25542570951586,-0.251919866444073,-0.248414023372287,-0.244908180300501,-0.241402337228715,-0.237896494156928,-0.234390651085142,-0.230884808013356,-0.227378964941569,-0.223873121869783,-0.220367278797997,-0.21686143572621,-0.213355592654424,-0.209849749582638,-0.206343906510851,-0.202838063439065,-0.199332220367279,-0.195826377295493,-0.192320534223706,-0.18881469115192,-0.185308848080134,-0.181803005008347,-0.178297161936561,-0.174791318864775,-0.171285475792988,-0.167779632721202,-0.164273789649416,-0.160767946577629,-0.157262103505843,-0.153756260434057,-0.150250417362271,-0.146744574290484,-0.143238731218698,-0.139732888146912,-0.136227045075125,-0.132721202003339,-0.129215358931553,-0.125709515859766,-0.12220367278798,-0.118697829716194,-0.115191986644407,-0.111686143572621,-0.108180300500835,-0.104674457429048,-0.101168614357262,-0.0976627712854758,-0.0941569282136895,-0.0906510851419032,-0.0871452420701169,-0.0836393989983306,-0.0801335559265443,-0.076627712854758,-0.0731218697829716,-0.0696160267111854,-0.066110183639399,-0.0626043405676128,-0.0590984974958264,-0.0555926544240402,-0.0520868113522538,-0.0485809682804675,-0.0450751252086812,-0.0415692821368949,-0.0380634390651086,-0.0345575959933222,-0.0310517529215359,-0.0275459098497496,-0.0240400667779633,-0.020534223706177,-0.0170283806343907,-0.0135225375626044,-0.0100166944908181,-0.00651085141903174,-0.00300500834724549,0.000500834724540877,0.00400667779632713,0.00751252086811349,0.0110183639398997,0.0145242070116861,0.0180300500834724,0.0215358931552587,0.0250417362270451,0.0285475792988313,0.0320534223706177,0.035559265442404,0.0390651085141903,0.0425709515859766,0.0460767946577629,0.0495826377295492,0.0530884808013355,0.0565943238731218,0.0601001669449082,0.0636060100166944,0.0671118530884808,0.070617696160267,0.0741235392320534,0.0776293823038396,0.081135225375626,0.0846410684474123,0.0881469115191986,0.091652754590985,0.0951585976627712,0.0986644407345576,0.102170283806344,0.10567612687813,0.109181969949916,0.112687813021703,0.116193656093489,0.119699499165275,0.123205342237062,0.126711185308848,0.130217028380634,0.133722871452421,0.137228714524207,0.140734557595993,0.14424040066778,0.147746243739566,0.151252086811352,0.154757929883139,0.158263772954925,0.161769616026711,0.165275459098497,0.168781302170284,0.17228714524207,0.175792988313856,0.179298831385643,0.182804674457429,0.186310517529215,0.189816360601002,0.193322203672788,0.196828046744574,0.200333889816361,0.203839732888147,0.207345575959933,0.21085141903172,0.214357262103506,0.217863105175292,0.221368948247078,0.224874791318865,0.228380634390651,0.231886477462437,0.235392320534224,0.23889816360601,0.242404006677796,0.245909849749583,0.249415692821369,0.252921535893155,0.256427378964942,0.259933222036728,0.263439065108514,0.2669449081803,0.270450751252087,0.273956594323873,0.277462437395659,0.280968280467446,0.284474123539232,0.287979966611018,0.291485809682805,0.294991652754591,0.298497495826377,0.302003338898164,0.30550918196995003,0.309015025041736,0.312520868113523,0.316026711185309,0.319532554257095,0.323038397328881,0.326544240400668,0.330050083472454,0.33355592654424,0.337061769616027,0.340567612687813,0.344073455759599,0.347579298831386,0.351085141903172,0.354590984974958,0.358096828046745,0.361602671118531,0.365108514190317,0.368614357262103,0.37212020033389,0.375626043405676,0.379131886477462,0.382637729549249,0.386143572621035,0.389649415692821,0.393155258764608,0.396661101836394,0.40016694490818,0.403672787979967,0.407178631051753,0.410684474123539,0.414190317195326,0.417696160267112,0.421202003338898,0.424707846410684,0.428213689482471,0.431719532554257,0.435225375626043,0.43873121869783,0.442237061769616,0.445742904841402,0.449248747913189,0.452754590984975,0.456260434056761,0.459766277128548,0.463272120200334,0.46677796327212,0.470283806343906,0.473789649415693,0.477295492487479,0.480801335559265,0.484307178631052,0.487813021702838,0.491318864774624,0.494824707846411,0.498330550918197,0.501836393989983,0.50534223706177,0.508848080133556,0.512353923205342,0.515859766277128,0.519365609348915,0.522871452420701,0.526377295492487,0.529883138564274,0.53338898163606,0.536894824707846,0.540400667779633,0.543906510851419,0.547412353923205,0.550918196994992,0.554424040066778,0.557929883138564,0.561435726210351,0.564941569282137,0.568447412353923,0.57195325542571,0.575459098497496,0.578964941569282,0.582470784641068,0.585976627712855,0.589482470784641,0.592988313856427,0.596494156928214,0.6]],"y":[[-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26,-1.26],[-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386,-1.25579298831386],[-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771,-1.25158597662771],[-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157,-1.24737896494157],[-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543,-1.24317195325543],[-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928,-1.23896494156928],[-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314,-1.23475792988314],[-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699,-1.23055091819699],[-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085,-1.22634390651085],[-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471,-1.22213689482471],[-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856,-1.21792988313856],[-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242,-1.21372287145242],[-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628,-1.20951585976628],[-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013,-1.20530884808013],[-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399,-1.20110183639399],[-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785,-1.19689482470785],[-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217,-1.1926878130217],[-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556,-1.18848080133556],[-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942,-1.18427378964942],[-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327,-1.18006677796327],[-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713,-1.17585976627713],[-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098,-1.17165275459098],[-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484,-1.16744574290484],[-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187,-1.1632387312187],[-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255,-1.15903171953255],[-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641,-1.15482470784641],[-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027,-1.15061769616027],[-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412,-1.14641068447412],[-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798,-1.14220367278798],[-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184,-1.13799666110184],[-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569,-1.13378964941569],[-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955,-1.12958263772955],[-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341,-1.12537562604341],[-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726,-1.12116861435726],[-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112,-1.11696160267112],[-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497,-1.11275459098497],[-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883,-1.10854757929883],[-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269,-1.10434056761269],[-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654,-1.10013355592654],[-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404,-1.0959265442404],[-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426,-1.09171953255426],[-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811,-1.08751252086811],[-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197,-1.08330550918197],[-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583,-1.07909849749583],[-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968,-1.07489148580968],[-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354,-1.07068447412354],[-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374,-1.0664774624374],[-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125,-1.06227045075125],[-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511,-1.05806343906511],[-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897,-1.05385642737897],[-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282,-1.04964941569282],[-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668,-1.04544240400668],[-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053,-1.04123539232053],[-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439,-1.03702838063439],[-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825,-1.03282136894825],[-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621,-1.0286143572621],[-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596,-1.02440734557596],[-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982,-1.02020033388982],[-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367,-1.01599332220367],[-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753,-1.01178631051753],[-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139,-1.00757929883139],[-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524,-1.00337228714524],[-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099,-0.999165275459099],[-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955,-0.994958263772955],[-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811,-0.990751252086811],[-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668,-0.986544240400668],[-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524,-0.982337228714524],[-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381,-0.978130217028381],[-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237,-0.973923205342237],[-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094,-0.969716193656094],[-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995,-0.96550918196995],[-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806,-0.961302170283806],[-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663,-0.957095158597663],[-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519,-0.952888146911519],[-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376,-0.948681135225376],[-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232,-0.944474123539232],[-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089,-0.940267111853089],[-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945,-0.936060100166945],[-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801,-0.931853088480801],[-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658,-0.927646076794658],[-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514,-0.923439065108514],[-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371,-0.919232053422371],[-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227,-0.915025041736227],[-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083,-0.910818030050083],[-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394,-0.90661101836394],[-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796,-0.902404006677796],[-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653,-0.898196994991653],[-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509,-0.893989983305509],[-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366,-0.889782971619366],[-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222,-0.885575959933222],[-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078,-0.881368948247078],[-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935,-0.877161936560935],[-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791,-0.872954924874791],[-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648,-0.868747913188648],[-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504,-0.864540901502504],[-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361,-0.860333889816361],[-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217,-0.856126878130217],[-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073,-0.851919866444073],[-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793,-0.84771285475793],[-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786,-0.843505843071786],[-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643,-0.839298831385643],[-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499,-0.835091819699499],[-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356,-0.830884808013356],[-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119,-0.8266777963272119],[-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068,-0.822470784641068],[-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925,-0.818263772954925],[-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781,-0.814056761268781],[-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638,-0.809849749582638],[-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494,-0.805642737896494],[-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351,-0.801435726210351],[-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207,-0.797228714524207],[-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064,-0.793021702838064],[-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192,-0.78881469115192],[-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776,-0.784607679465776],[-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633,-0.780400667779633],[-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489,-0.776193656093489],[-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346,-0.771986644407346],[-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202,-0.767779632721202],[-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058,-0.763572621035058],[-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915,-0.759365609348915],[-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771,-0.755158597662771],[-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628,-0.750951585976628],[-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484,-0.746744574290484],[-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341,-0.742537562604341],[-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197,-0.738330550918197],[-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053,-0.734123539232053],[-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591,-0.72991652754591],[-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766,-0.725709515859766],[-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623,-0.721502504173623],[-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479,-0.717295492487479],[-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336,-0.713088480801336],[-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192,-0.708881469115192],[-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048,-0.704674457429048],[-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905,-0.700467445742905],[-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761,-0.696260434056761],[-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618,-0.692053422370618],[-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474,-0.687846410684474],[-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331,-0.683639398998331],[-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187,-0.679432387312187],[-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043,-0.675225375626043],[-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399,-0.6710183639399],[-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756,-0.666811352253756],[-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613,-0.662604340567613],[-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469,-0.658397328881469],[-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326,-0.654190317195326],[-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182,-0.649983305509182],[-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038,-0.645776293823038],[-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895,-0.641569282136895],[-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751,-0.637362270450751],[-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608,-0.633155258764608],[-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464,-0.628948247078464],[-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321,-0.624741235392321],[-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177,-0.620534223706177],[-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033,-0.616327212020033],[-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389,-0.61212020033389],[-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746,-0.607913188647746],[-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603,-0.603706176961603],[-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459,-0.599499165275459],[-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316,-0.595292153589316],[-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172,-0.591085141903172],[-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028,-0.586878130217028],[-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885,-0.582671118530885],[-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741,-0.578464106844741],[-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598,-0.574257095158598],[-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454,-0.570050083472454],[-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311,-0.565843071786311],[-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167,-0.561636060100167],[-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023,-0.557429048414023],[-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788,-0.55322203672788],[-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736,-0.549015025041736],[-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593,-0.544808013355593],[-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449,-0.540601001669449],[-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306,-0.536393989983306],[-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162,-0.532186978297162],[-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018,-0.527979966611018],[-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875,-0.523772954924875],[-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731,-0.519565943238731],[-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588,-0.515358931552588],[-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444,-0.511151919866444],[-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803,-0.5069449081803],[-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157,-0.502737896494157],[-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013,-0.498530884808013],[-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187,-0.49432387312187],[-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726,-0.490116861435726],[-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583,-0.485909849749583],[-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439,-0.481702838063439],[-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295,-0.477495826377295],[-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152,-0.473288814691152],[-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008,-0.469081803005008],[-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865,-0.464874791318865],[-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721,-0.460667779632721],[-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578,-0.456460767946578],[-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434,-0.452253756260434],[-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291,-0.448046744574291],[-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147,-0.443839732888147],[-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003,-0.439632721202003],[-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586,-0.43542570951586],[-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716,-0.431218697829716],[-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573,-0.427011686143573],[-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429,-0.422804674457429],[-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286,-0.418597662771286],[-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142,-0.414390651085142],[-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998,-0.410183639398998],[-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855,-0.405976627712855],[-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711,-0.401769616026711],[-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568,-0.397562604340568],[-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424,-0.393355592654424],[-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281,-0.389148580968281],[-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137,-0.384941569282137],[-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993,-0.380734557595993],[-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985,-0.37652754590985],[-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706,-0.372320534223706],[-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563,-0.368113522537563],[-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419,-0.363906510851419],[-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275,-0.359699499165275],[-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132,-0.355492487479132],[-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988,-0.351285475792988],[-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845,-0.347078464106845],[-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701,-0.342871452420701],[-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558,-0.338664440734558],[-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414,-0.334457429048414],[-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227,-0.33025041736227],[-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127,-0.326043405676127],[-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983,-0.321836393989983],[-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384,-0.31762938230384],[-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696,-0.313422370617696],[-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553,-0.309215358931553],[-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409,-0.305008347245409],[-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265,-0.300801335559265],[-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122,-0.296594323873122],[-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978,-0.292387312186978],[-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835,-0.288180300500835],[-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691,-0.283973288814691],[-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548,-0.279766277128548],[-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404,-0.275559265442404],[-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626,-0.27135225375626],[-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117,-0.267145242070117],[-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973,-0.262938230383973],[-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783,-0.25873121869783],[-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686,-0.254524207011686],[-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543,-0.250317195325543],[-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399,-0.246110183639399],[-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255,-0.241903171953255],[-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112,-0.237696160267112],[-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968,-0.233489148580968],[-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825,-0.229282136894825],[-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681,-0.225075125208681],[-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538,-0.220868113522538],[-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394,-0.216661101836394],[-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251,-0.212454090150251],[-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107,-0.208247078464107],[-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963,-0.204040066777963],[-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182,-0.19983305509182],[-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676,-0.195626043405676],[-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533,-0.191419031719533],[-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389,-0.187212020033389],[-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245,-0.183005008347245],[-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102,-0.178797996661102],[-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958,-0.174590984974958],[-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815,-0.170383973288815],[-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671,-0.166176961602671],[-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527,-0.161969949916527],[-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384,-0.157762938230384],[-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424,-0.15355592654424],[-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097,-0.149348914858097],[-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953,-0.145141903171953],[-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581,-0.14093489148581],[-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666,-0.136727879799666],[-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523,-0.132520868113523],[-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379,-0.128313856427379],[-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235,-0.124106844741235],[-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092,-0.119899833055092],[-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948,-0.115692821368948],[-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805,-0.111485809682805],[-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661,-0.107278797996661],[-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517,-0.103071786310517],[-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374,-0.098864774624374],[-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304,-0.0946577629382304],[-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869,-0.0904507512520869],[-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432,-0.0862437395659432],[-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998,-0.0820367278797998],[-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561,-0.0778297161936561],[-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126,-0.0736227045075126],[-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689,-0.0694156928213689],[-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255,-0.0652086811352255],[-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818,-0.0610016694490818],[-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383,-0.0567946577629383],[-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947,-0.0525876460767947],[-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512,-0.0483806343906512],[-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075,-0.0441736227045075],[-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639,-0.0399666110183639],[-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204,-0.0357595993322204],[-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767,-0.0315525876460767],[-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333,-0.0273455759599333],[-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896,-0.0231385642737896],[-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461,-0.0189315525876461],[-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024,-0.0147245409015024],[-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.010517529215359,-0.0105175292153